home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-19 | 794 b | 32 lines |
- # Install extra bits borrowed from Sun' JDK-1.0.
- #
- # See "COPYRIGHT" for license terms on the files in this directory
- # excluding this one.
- #
- # Copyright (c) 1996 Systems Architecture Research Centre,
- # City University, London, UK.
- #
- # See the file "license.terms" for information on usage and redistribution
- # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- #
- # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
-
- INSTALL= @INSTALL@
- INSTALL_DATA= @INSTALL_DATA@
- prefix= @prefix@
- classdir= @datadir@/kaffe
- propdir= @datadir@/kaffe/lib
- srcdir= @srcdir@
-
- all:
-
- clean:
-
- distclean:
-
- install:
- mkdir -p $(classdir)
- mkdir -p $(propdir)
- $(INSTALL_DATA) $(srcdir)/classes.zip $(classdir)/classes.zip
- $(INSTALL_DATA) $(srcdir)/javac.properties $(propdir)/javac.properties
-